home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / dev / src / WBBump_src.lha / WBBump_src / wbbump_plugin.e < prev    next >
Encoding:
Text File  |  1999-06-30  |  1.8 KB  |  106 lines

  1. /* ********************** */
  2. /* wbbump_plugin.wbbplugin.e */
  3. /* ********************** */
  4.  
  5.  
  6.  
  7. /*
  8.     WBBump - Bumpmapping on the Workbench!
  9.  
  10.     Copyright (C) 1999  Thomas Jensen - dm98411@edb.tietgen.dk
  11.  
  12.     This program is free software; you can redistribute it and/or modify
  13.     it under the terms of the GNU General Public License as published by
  14.     the Free Software Foundation; either version 2 of the License, or
  15.     (at your option) any later version.
  16.  
  17.     This program is distributed in the hope that it will be useful,
  18.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.     GNU General Public License for more details.
  21.  
  22.     You should have received a copy of the GNU General Public License
  23.     along with this program; if not, write to the Free Software Foundation,
  24.     Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  25. */
  26.  
  27.  
  28.  
  29. /*
  30.     dummy code to generate wbbump_plugin.m
  31. */
  32.  
  33.  
  34. LIBRARY 'wbbump_plugin.wbbplugin', 1, 0, 'wbbump_plugin.wbbplugin 1.0 (1/5/99)' IS
  35.     pluginInit(A0), pluginCleanup(),
  36.     pluginInitInstance(A0), pluginFreeInstance(A0),
  37.     pluginGetAttr(D1,D2,A0), pluginSetAttr(D1,D2,D3),
  38.     pluginDoAction(A0,A1,A2,A3)
  39.  
  40.  
  41.  
  42.  
  43.  
  44. MODULE    'utility/tagitem'
  45.  
  46.  
  47.  
  48. OBJECT handle
  49.     dummy    :    LONG
  50. ENDOBJECT
  51.  
  52.  
  53.  
  54. PROC main()
  55.  
  56.  
  57. ENDPROC
  58.  
  59.  
  60.  
  61. PROC close()
  62.  
  63. ENDPROC
  64.  
  65.  
  66.  
  67. PROC pluginInit(tags:PTR TO tagitem)
  68. ENDPROC
  69.  
  70.  
  71. PROC pluginCleanup()
  72. ENDPROC
  73.  
  74.  
  75.  
  76. PROC pluginInitInstance(tags:PTR TO tagitem)
  77.  
  78. ENDPROC NIL
  79.  
  80.  
  81.  
  82.  
  83. PROC pluginFreeInstance(h:PTR TO handle)
  84.  
  85. ENDPROC
  86.  
  87.  
  88.  
  89. PROC pluginGetAttr(h:PTR TO handle, attr, valueptr:PTR TO LONG)
  90.     DEF    succes=FALSE
  91.  
  92. ENDPROC succes
  93.  
  94.  
  95.  
  96. PROC pluginSetAttr(h:PTR TO handle, attr, value)
  97.     DEF    succes=FALSE
  98.  
  99. ENDPROC succes
  100.  
  101.  
  102.  
  103.  
  104. PROC pluginDoAction(h:PTR TO handle, inbuf:PTR TO CHAR, outbuf:PTR TO CHAR, tags:PTR TO tagitem)
  105. ENDPROC
  106.